home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-02 / svgabg31.zip / SVGA256.INC < prev    next >
Text File  |  1991-12-06  |  1KB  |  41 lines

  1. (************************************************)
  2. (*                         *)
  3. (*     SuperVGA 256 BGI driver defines    *)
  4. (*        Copyright (c) 1991        *)
  5. (*        Jordan Hargraphix Software        *)
  6. (*                        *)
  7. (************************************************)
  8.  
  9. type DacPalette256 = array[0..255] of array[0..2] of Byte;
  10.  
  11. (* These are the currently supported modes *)
  12. const
  13.   SVGA320x200x256    = 0;    (* 320x200x256 Standard VGA *)
  14.   SVGA640x400x256    = 1;    (* 640x400x256 Svga *)
  15.   SVGA640x480x256    = 2;    (* 640x480x256 Svga *)
  16.   SVGA800x600x256    = 3;    (* 800x600x256 Svga *)
  17.   SVGA1024x768x256    = 4;    (* 1024x768x256 Svga *)
  18.  
  19.   XNOR_PUT        = 5;
  20.   NOR_PUT        = 6;
  21.   NAND_PUT        = 7;
  22.   TRANS_COPY_PUT    = 8;    (* Doesn't work on 16-color systems *)
  23.  
  24. (* Setvgapalette sets the entire 256 color palette *)
  25. (* PalBuf contains RGB values for all 256 colors   *)
  26. (* R,G,B values range from 0 to 63               *)
  27. procedure SetVGAPalette256(PalBuf : DacPalette256);
  28. var
  29.   Reg : Registers;
  30.  
  31. begin
  32.   reg.ax := $1012;
  33.   reg.bx := 0;
  34.   reg.cx := 256;
  35.   reg.es := Seg(PalBuf);
  36.   reg.dx := Ofs(PalBuf);
  37.   intr($10,reg);
  38. end;
  39.  
  40.  
  41.